Dim nvc As NameValueCollection = New NameValueCollection()
nvc = System.Configuration.ConfigurationManager.GetSection("MyCompanyAppSettings")

Response.Write(nvc("Key1") + "<br />")
Response.Write(nvc("Key2"))
